home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / DYN401.ZIP / dpp / README < prev    next >
Text File  |  1996-02-18  |  1KB  |  48 lines

  1.  
  2. Currently dpp is only setup to be built with 32 bit compilers or a
  3. unix/linux compiler.  There is a problem with building dpp in a 16 bit
  4. environment because dpp uses a lot of memory.  The dpp.exe program
  5. shipped (which is compiled with WATCOM 32 bit under DOS mode) will run
  6. and has been tested under DOS and DOS box under Windows 3.1/NT/95.
  7. There shouldn't be any problem compiling it with other 32 bit
  8. compilers, except that the executable will be less portable.
  9.  
  10. To rebuild the libraries use:
  11.  
  12. dmake -d MAKEFILE.DM
  13.  
  14. where MAKEFILE.DM is one of:
  15.  
  16. W32.DM        WATCOM 32 bit
  17. M32.DM        Microsoft C 2.x 32 bit
  18. S32.DM        Symantec C 32 bit
  19.  
  20. Or use the following for Linux/unix
  21.  
  22. make -f makefile.unx
  23.  
  24. The BORLAND_HOME path needs to be edited in B16.DM or B32.DM prior to use.
  25.  
  26. The generated dpp executable will default to generating code for the
  27. strategy it was compiled for.
  28.  
  29. If you want to build for a different dpp Strategy use (like S1):
  30.  
  31. dmake -f MAKEFILE.DM  STRAT=-S1 newgens  (regenerates the .c files)
  32. dmake -f MAKEFILE.DM  STRAT=-S1
  33.  
  34. You must, however, rebuild ../kernel with the selected strategy first!
  35.  
  36.  
  37. Debug libraries may be produced as follows:
  38.  
  39. dmake -d MAKEFILE.DM  DEBUG=1
  40.  
  41.  
  42. There is also a clean.bat batch file which will clean all the garbage files
  43. or you can use:
  44.  
  45. dmake -f MAKEFILE.DM  clean
  46.  
  47.  
  48.